home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 78 / CD Actual 78 Mayo 2003.iso / Linux / LinuxGazette / lg / issue89 / misc / danguer / hello_style_variables.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2003-02-17  |  561 b   |  21 lines

  1. <!-- hello_style.xsl -->
  2. <xsl:stylesheet version="1.0"
  3.                   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.                   
  5. <xsl:template match="/"> 
  6.   <xsl:variable name="color"><xsl:value-of select="//text/@color"/></xsl:variable>
  7.   <html> 
  8.     <head>
  9.       <title>Extracting <xsl:value-of select="//text"/> </title>
  10.     </head>
  11.     
  12.     <body>
  13.        <p>
  14.            The <b>text</b> of the root element is: <font color="{$color}"><xsl:value-of select="//text"/></font>
  15.        </p>   
  16.     </body>
  17.   </html>
  18. </xsl:template>
  19.  
  20. </xsl:stylesheet>
  21.